/*
* jQuery.autocomplete.css (v1.1.0)
* authored by nswish (nswish@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
div.ac { 
	border-style: solid;
	border-width: 1px;
	border-color: #e6e6e6;
	position: absolute;
	display: none;
	overflow-x:hidden;
    overflow-y:auto;
    margin-top: 2px;
    z-index: 999;
    background: #fff;
    margin-left: 7px
}

div.ac  ul {
	margin: 0px;
	padding: 0px;
}

div.ac  ul  li {
	margin: 0px;
	list-style-type: none;
	background-color: white;
	word-break: break-all;
	font-family: helvetica, arial, "Courier New", sans-serif;
    font-size:15px;
}

div.ac  ul  li  div {
	display: table-row;
    padding-top: 5px;
	width: 100%;
}

div.ac  ul  li  div em {

	font-style: normal;
	font-size:15px;
    font-weight:bold;

}

div.ac  ul  li.normal {
	padding: 2px 0px 2px 8px;
}

div.ac  ul  li.normal  div  span{
	display: table-cell;
	vertical-align: middle;
}

div.ac  ul  li.iconList {
	padding: 0px 0px 0px 2px;
}

div.ac  ul  li.iconList  div  div {
	display: table-cell;
	vertical-align: middle;
	padding-right: 5px;
}

div.ac  ul  li.iconList  div  div  img {
	display: table;
	display: table-cell\9;
}   

div.ac  ul  li.iconList  div  span {
	display: table-cell;
	vertical-align: middle;
}

div.ac  ul  li.selected {
	background-color: #f7f7f7;
}